projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c4fc9e3
)
(indent-region): Fix paren error in last change.
author
Richard M. Stallman
<rms@gnu.org>
Fri, 6 Aug 1993 22:15:45 +0000
(22:15 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Fri, 6 Aug 1993 22:15:45 +0000
(22:15 +0000)
lisp/indent.el
patch
|
blob
|
history
diff --git
a/lisp/indent.el
b/lisp/indent.el
index 80c8d2d1efdede8006a9e15f98ea072aaea19b5e..adb975973456d99589e59bcfb8b4bdcf863c9efa 100644
(file)
--- a/
lisp/indent.el
+++ b/
lisp/indent.el
@@
-113,7
+113,7
@@
Called from a program, takes three args: START, END and COLUMN."
(goto-char start)
(or (bolp) (forward-line 1))
(while (< (point) end)
- (or (and (bolp) (eolp))
)
+ (or (and (bolp) (eolp))
(funcall indent-line-function))
(forward-line 1))
(move-marker end nil))))